f5f013129b5786417f5863d7672af030f73eb587,providers/axis/src/main/java/org/mule/providers/soap/axis/AxisServiceComponent.java,AxisServiceComponent,getEndpoint,#UMOEventContext#,581

Before Change


    private UMOEndpointURI getEndpoint(UMOEventContext context) throws MalformedEndpointException
    {
        String endpoint = context.getEndpointURI().getAddress();
        String request = (String) context.getProperty(HttpConnector.HTTP_REQUEST_PROPERTY);
        if (request != null) {
            int i = endpoint.indexOf("/", endpoint.indexOf("://") + 3);
            if (i > -1) {

After Change


    private UMOEndpointURI getEndpoint(UMOEventContext context) throws MalformedEndpointException
    {
        String endpoint = context.getEndpointURI().getAddress();
        String request = context.getMessage().getStringProperty(HttpConnector.HTTP_REQUEST_PROPERTY, null);
        if (request != null) {
            int i = endpoint.indexOf("/", endpoint.indexOf("://") + 3);
            if (i > -1) {